:root {
    color-scheme: light;
    --brand: #e87911;
    --brand-strong: #b84708;
    --brand-soft: #fff1df;
    --teal: #176b68;
    --ink: #16201f;
    --muted: #5d6967;
    --paper: #f8f7f3;
    --surface: #fff;
    --surface-2: #eeeee8;
    --border: #d8ddd9;
    --dark: #102322;
    --shadow: 0 24px 64px rgba(21, 45, 43, .1);
    --font-sans: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Be Vietnam Pro', system-ui, sans-serif;
    --ease: cubic-bezier(.2, .8, .2, 1);
}
:root[data-theme="dark"] {
    color-scheme: dark;
    --brand: #ff9a3d;
    --brand-strong: #ffc078;
    --brand-soft: #392817;
    --teal: #72c8c1;
    --ink: #edf3f1;
    --muted: #aebbb7;
    --paper: #0d1716;
    --surface: #142220;
    --surface-2: #1a2b29;
    --border: #31413e;
    --dark: #07100f;
    --shadow: 0 24px 64px rgba(0, 0, 0, .28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.65 var(--font-sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { touch-action: manipulation; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--brand-strong); border-radius: 8px; font-weight: 700; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--paper) 90%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent); backdrop-filter: blur(16px); }
.navbar { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { flex: 0 0 50px; width: 50px; height: 50px; overflow: hidden; border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(14, 37, 35, .1); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); }
.brand-copy { min-width: 0; }
.brand strong { display: block; max-width: 410px; color: var(--brand-strong); font: 800 clamp(.72rem, 1vw, .9rem)/1.25 var(--font-display); letter-spacing: .015em; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font: 650 .67rem/1 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; }
.nav-panel, .nav-links, .lang-switch { display: flex; align-items: center; }
.nav-panel { gap: 14px; }
.nav-links { gap: 2px; }
.nav-links a { min-height: 44px; display: grid; place-items: center; padding: 0 14px; border-radius: 10px; color: var(--muted); font-size: .91rem; font-weight: 650; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--ink); background: var(--brand-soft); }
.lang-switch { padding: 3px; border: 1px solid var(--border); border-radius: 999px; }
.lang-switch a { min-width: 36px; min-height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); font-size: .72rem; font-weight: 800; }
.lang-switch a.active { color: #fff; background: var(--teal); }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; color: var(--ink); background: var(--surface); border: 1px solid var(--border); border-radius: 50%; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.icon-button:hover { color: var(--brand); background: var(--brand-soft); }
.icon-button:active { transform: scale(.96); }
.icon-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .moon-icon, :root[data-theme="dark"] .theme-toggle .sun-icon { display: none; }
:root[data-theme="dark"] .theme-toggle .moon-icon { display: block; }
.nav-toggle { display: none; }

/* Shared controls */
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; color: #fff; background: var(--brand-strong); border: 1px solid var(--brand-strong); border-radius: 10px; box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 24%, transparent); font-weight: 750; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in srgb, var(--brand) 32%, transparent); }
.button:active { transform: translateY(0); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .88rem; }
.button-ghost, .button-outline { color: var(--ink); background: transparent; border-color: var(--border); box-shadow: none; }
.button-ghost:hover, .button-outline:hover { background: var(--surface); box-shadow: none; }
.button-light { color: #102322; background: #fff; border-color: #fff; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-strong); font-weight: 750; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: #ffd39f; }
.eyebrow { margin: 0 0 12px; color: var(--brand-strong); font-size: .73rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 20px; height: 2px; margin-right: 9px; vertical-align: middle; background: currentColor; content: ""; }
.eyebrow-dark { color: #ffd39f; }
.gradient-text { color: var(--brand-strong); }

/* Home hero */
.hero { position: relative; min-height: min(780px, calc(100dvh - 80px)); display: grid; align-items: center; overflow: hidden; }
.hero::before { position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 34%), linear-gradient(115deg, var(--paper) 58%, var(--brand-soft) 58%); content: ""; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: clamp(48px, 8vw, 110px); padding-block: 88px; }
.hero-content { max-width: 680px; }
.hero h1 { max-width: 680px; margin: 0 0 26px; font: 800 clamp(3.2rem, 6vw, 5.6rem)/1.02 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.hero-lede { max-width: 590px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font: 750 .92rem/1.3 var(--font-display); }
.hero-proof span { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.hero-visual { position: relative; width: min(100%, 470px); aspect-ratio: 1; margin-inline: auto; }
.orbit { position: absolute; border: 2px dashed color-mix(in srgb, var(--brand) 58%, transparent); border-radius: 50%; }
.orbit i { position: absolute; display: block; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 7px color-mix(in srgb, var(--brand) 17%, transparent); }
.orbit-outer { inset: 0; animation: orbit-spin 26s linear infinite; }
.orbit-outer i:nth-child(1) { top: -8px; left: 50%; width: 17px; height: 17px; }
.orbit-outer i:nth-child(2) { right: 6%; bottom: 12%; width: 13px; height: 13px; background: var(--teal); box-shadow: 0 0 0 7px color-mix(in srgb, var(--teal) 17%, transparent); }
.orbit-outer i:nth-child(3) { top: 46%; left: -7px; width: 14px; height: 14px; background: var(--ink); box-shadow: 0 0 0 7px color-mix(in srgb, var(--ink) 14%, transparent); }
.orbit-inner { inset: 23%; border-style: solid; border-color: color-mix(in srgb, var(--brand-strong) 34%, transparent); animation: orbit-spin 16s linear infinite reverse; }
.orbit-inner i:nth-child(1) { top: 50%; right: -7px; width: 13px; height: 13px; background: var(--brand-strong); }
.orbit-inner i:nth-child(2) { bottom: -5px; left: 30%; width: 10px; height: 10px; background: var(--teal); box-shadow: 0 0 0 6px color-mix(in srgb, var(--teal) 17%, transparent); }
.orbit-core { position: absolute; inset: 37%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffc778, var(--brand) 48%, var(--brand-strong)); box-shadow: 0 24px 55px color-mix(in srgb, var(--brand) 42%, transparent), inset 0 2px 8px rgba(255, 255, 255, .45); animation: orbit-pulse 4s ease-in-out infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-pulse { 50% { transform: scale(1.06); } }

/* Sections */
.section { padding-block: clamp(72px, 9vw, 120px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading h2 { max-width: 760px; margin: 0; font: 750 clamp(2rem, 4vw, 3.5rem)/1.08 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p { max-width: 460px; margin: 0; color: var(--muted); }
.section-dark { color: #f3f7f5; background: var(--dark); }
.section-heading-light p:not(.eyebrow) { color: #b7c5c0; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.capability-card { min-height: 280px; padding: 36px 32px; border-right: 1px solid var(--border); transition: background .25s; }
.capability-card:first-child { border-left: 1px solid var(--border); }
.capability-card:hover { background: var(--surface); }
.capability-card > span { color: var(--brand-strong); font-size: .74rem; font-weight: 800; }
.capability-card h3 { margin: 70px 0 12px; font: 750 1.4rem/1.2 var(--font-display); }
.capability-card p { margin: 0; color: var(--muted); }
.process-panel { padding: clamp(30px, 5vw, 64px); background: var(--surface); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.process-steps div { position: relative; padding: 30px 24px 6px 0; }
.process-steps div:not(:last-child)::after { position: absolute; top: 36px; right: 18px; width: 48px; height: 1px; background: var(--border); content: ""; }
.process-steps span, .process-steps strong, .process-steps small { display: block; }
.process-steps span { margin-bottom: 42px; color: var(--brand-strong); font-size: .75rem; font-weight: 800; }
.process-steps strong { font: 700 1.05rem/1.3 var(--font-display); }
.process-steps small { margin-top: 6px; color: var(--muted); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card-grid > [data-search-item] { min-width: 0; }
.card { height: 100%; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); box-shadow: var(--shadow); }
.card-media { display: block; overflow: hidden; background: var(--surface-2); aspect-ratio: 16 / 10; }
.card-image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-image { transform: scale(1.035); }
.card-image.placeholder { background: linear-gradient(145deg, var(--brand-soft), var(--surface-2)); }
.card-body { position: relative; padding: 26px; }
.card-body small { color: var(--brand-strong); font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.card-body h3 { margin: 12px 0 10px; font: 750 1.24rem/1.3 var(--font-display); letter-spacing: -.02em; }
.card-body h3 a::after { position: absolute; inset: 0; content: ""; }
.card-body p { margin: 0 0 22px; color: var(--muted); }
.card-body .text-link, .product-footer { position: relative; z-index: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-footer strong { font-variant-numeric: tabular-nums; }
.empty-state { grid-column: 1 / -1; padding: 32px; color: var(--muted); background: var(--surface); border: 1px dashed var(--border); border-radius: 12px; text-align: center; }

/* List pages and search */
.page-header { padding-top: clamp(64px, 8vw, 110px); }
.page-header h1, .article h1 { margin: 0; font: 800 clamp(2.8rem, 6vw, 5.4rem)/1 var(--font-display); letter-spacing: -.055em; text-wrap: balance; }
.about h1 { max-width: 780px; margin: 0; font: 700 clamp(2.5rem, 4.5vw, 4rem)/1.08 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.page-header > p:last-child { max-width: 600px; margin: 20px 0 0; color: var(--muted); font-size: 1.12rem; }
.content-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.search-field { position: relative; width: min(100%, 480px); }
.search-field svg { position: absolute; top: 50%; left: 17px; width: 20px; fill: none; stroke: var(--muted); stroke-width: 1.8; transform: translateY(-50%); }
.search-field input { width: 100%; min-height: 52px; padding: 12px 18px 12px 48px; color: var(--ink); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; outline: none; }
.search-field input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
.result-count { color: var(--muted); font-size: .86rem; }

/* Detail and company pages */
.article { max-width: 1040px; padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(72px, 9vw, 120px); }
.about { max-width: 860px; padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(72px, 9vw, 120px); }
.back-link { display: inline-flex; margin-bottom: 34px; color: var(--muted); font-weight: 700; }
.back-link:hover { color: var(--brand-strong); }
.article-header { max-width: 860px; margin-inline: auto; }
.article h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.article-summary { max-width: 720px; margin: 24px 0 40px; color: var(--muted); font-size: 1.2rem; line-height: 1.75; }
.article-image { width: 100%; max-height: 620px; margin: 36px 0 44px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.article-body { display: flow-root; margin-top: 34px; padding: clamp(28px, 6vw, 70px); color: var(--ink); background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); font-size: 1.06rem; line-height: 1.82; overflow-wrap: anywhere; }
.article-body > * { max-width: 72ch; margin-inline: auto; }
.article-body > p:first-child { color: var(--ink); font-size: 1.14rem; }
.article-body h2, .article-body h3, .article-body h4 { margin-top: 2.2em; margin-bottom: .75em; font-family: var(--font-display); line-height: 1.25; letter-spacing: -.025em; }
.article-body h2 { font-size: 1.8rem; }
.article-body h3 { font-size: 1.35rem; }
.article-body li { margin-block: .65em; padding-left: .25em; }
.article-body li::marker { color: var(--brand-strong); font-weight: 800; }
.article-body strong { color: var(--ink); font-weight: 750; }
.article-body a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }
.article-body img, .ck-content img { height: auto; border-radius: 10px; }
.article-body figure { margin-block: 36px; }
.article-body figure.image { max-width: 100%; }
.article-body .image-style-side { float: right; margin: 8px 0 28px 36px; }
.article-body .image-style-align-left { float: left; margin: 8px 36px 28px 0; }
.article-body .image-style-align-right { margin-right: 0; margin-left: auto; }
.article-body figure.image img { width: 100%; box-shadow: 0 14px 34px rgba(12, 34, 32, .14); }
.article-body figcaption { margin-top: 10px; color: var(--muted); font-size: .86rem; text-align: center; }
.article-body blockquote { padding-left: 22px; border-left: 4px solid var(--brand); color: var(--muted); }
.article-body pre { max-width: 100%; overflow-x: auto; padding: 20px; background: var(--dark); color: #edf3f1; border-radius: 10px; }
.article-body table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; }
.article-body .media { clear: both; width: min(100%, 820px); max-width: 820px; aspect-ratio: 16 / 9; margin: 48px auto !important; overflow: hidden; background: #000; border-radius: 16px; box-shadow: 0 16px 38px rgba(0, 0, 0, .2); }
.article-body .media iframe { display: block; width: 100%; height: 100%; aspect-ratio: 16 / 9; border: 0; }
.article-embed { display: block; width: min(1180px, calc(100vw - 48px)); margin: 44px 0 44px 50%; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); transform: translateX(-50%); }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0; }
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.about-copy { margin-top: 28px; color: var(--muted); font-size: 1.08rem; }
.company-details { margin: 40px 0; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; }
.company-details div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding-block: 14px; }
.company-details div + div { border-top: 1px solid var(--border); }
.company-details dt { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.company-details dd { margin: 0; }
.contact-panel { scroll-margin-top: 110px; margin-top: 48px; padding: 34px; background: var(--brand-soft); border-radius: 18px; }
.contact-panel h2 { margin: 0; font: 750 1.8rem/1.2 var(--font-display); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }

/* Footer */
.site-footer { margin-top: 40px; padding-top: 80px; color: #b9c6c1; background: var(--dark); }
.footer-cta { display: flex; align-items: end; justify-content: space-between; gap: 36px; padding-bottom: 68px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.footer-cta h2 { max-width: 720px; margin: 0; color: #fff; font: 750 clamp(2rem, 4vw, 3.5rem)/1.08 var(--font-display); letter-spacing: -.045em; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) repeat(2, 1fr); gap: 54px; padding-block: 64px 50px; }
.footer-grid h2 { margin: 0 0 18px; color: #fff; font: 750 .78rem/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.footer-grid div > a, .footer-grid div > p { display: block; margin: 0 0 10px; }
.footer-grid div > a:hover { color: #fff; }
.footer-brand img { width: 72px; height: 72px; margin-bottom: 20px; object-fit: cover; border-radius: 14px; }
.footer-name { max-width: 480px; color: #fff; font-weight: 700; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .84rem; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; color: #fff; background: var(--brand-strong); border-color: transparent; box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1020px) {
    .nav-cta { display: none; }
    .hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
    .hero h1 { font-size: clamp(3.1rem, 7vw, 4.8rem); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps div:nth-child(2)::after { display: none; }
}
@media (max-width: 820px) {
    .container { width: min(100% - 32px, 680px); }
    .navbar { min-height: 72px; }
    .brand-mark { flex-basis: 44px; width: 44px; height: 44px; border-radius: 11px; }
    .nav-toggle { display: grid; }
    .nav-panel { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 14px; padding: 20px 16px 24px; background: var(--paper); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
    .nav-panel.is-open { display: flex; }
    .nav-links { align-items: stretch; flex-direction: column; }
    .nav-links a { justify-content: start; }
    .lang-switch { align-self: flex-start; }
    .theme-toggle { position: absolute; right: 76px; top: 14px; }
    .hero { min-height: auto; }
    .hero::before { background: linear-gradient(160deg, var(--paper) 65%, var(--brand-soft) 65%); }
    .hero-grid { grid-template-columns: 1fr; padding-block: 64px; }
    .hero-visual { width: min(100%, 390px); }
    .hero-proof { margin-top: 40px; }
    .section-heading, .footer-cta { align-items: flex-start; flex-direction: column; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: auto; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .capability-card:last-child { border-bottom: 0; }
    .capability-card h3 { margin-top: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
    .container { width: min(100% - 24px, 520px); }
    .brand strong { max-width: 235px; font-size: .67rem; }
    .brand small { font-size: .59rem; }
    .hero-grid { padding-block: 50px; }
    .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; gap: 14px; }
    .hero-proof div { display: grid; grid-template-columns: 120px 1fr; align-items: center; }
    .hero-proof span { margin-top: 0; }
    .hero-visual { width: min(88vw, 320px); }
    .section { padding-block: 64px; }
    .section-heading { margin-bottom: 28px; }
    .section-heading h2 { font-size: 2.15rem; }
    .card-grid { grid-template-columns: 1fr; }
    .content-toolbar { align-items: stretch; flex-direction: column; }
    .search-field { width: 100%; }
    .process-panel { padding: 28px 22px; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps div { padding-right: 0; border-bottom: 1px solid var(--border); }
    .process-steps div:last-child { border: 0; }
    .process-steps div::after { display: none; }
    .process-steps span { margin-bottom: 12px; }
    .page-header h1, .article h1 { font-size: 2.8rem; }
    .about h1 { font-size: 2.5rem; }
    .article-body { padding: 26px 20px; border-radius: 14px; }
    .article-body .image_resized,
    .article-body .image-style-side,
    .article-body .image-style-align-left,
    .article-body .image-style-align-right { float: none; width: 100% !important; margin: 28px auto; }
    .product-gallery { grid-template-columns: repeat(2, 1fr); }
    .company-details div { grid-template-columns: 1fr; gap: 4px; }
    .contact-actions { align-items: stretch; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand { grid-column: auto; }
    .footer-cta .button { width: 100%; }
    .article-embed { width: calc(100vw - 24px); }
}
